runtime.moduledata.types (field)
21 uses
runtime (current package)
plugin.go#L41: inRange(pmd.types, pmd.etypes, md.types, md.etypes) {
plugin.go#L46: println("\tpmd.types-etypes=", hex(pmd.types), "-", hex(pmd.etypes))
plugin.go#L50: println("\tmd.types-etypes=", hex(md.types), "-", hex(md.etypes))
plugin.go#L84: symName := resolveNameOff(unsafe.Pointer(md.types), ptab.name)
plugin.go#L85: t := toRType((*_type)(unsafe.Pointer(md.types))).typeOff(ptab.typ) // TODO can this stack of conversions be simpler?
runtime1.go#L636: sections := []unsafe.Pointer{unsafe.Pointer(modules[0].types)}
runtime1.go#L639: sections = append(sections, unsafe.Pointer(md.types))
symtab.go#L408: types, etypes uintptr
type.go#L124: if base >= md.types && base < md.etypes {
type.go#L125: res := md.types + uintptr(off)
type.go#L127: println("runtime: nameOff", hex(off), "out of range", hex(md.types), "-", hex(md.etypes))
type.go#L141: println("\ttypes", hex(next.types), "etypes", hex(next.etypes))
type.go#L170: if base >= next.types && base < next.etypes {
type.go#L182: println("\ttypes", hex(next.types), "etypes", hex(next.etypes))
type.go#L191: res := md.types + uintptr(off)
type.go#L193: println("runtime: typeOff", hex(off), "out of range", hex(md.types), "-", hex(md.etypes))
type.go#L212: if base >= next.types && base < next.etypes {
type.go#L224: println("\ttypes", hex(next.types), "etypes", hex(next.etypes))
type.go#L286: t = (*_type)(unsafe.Pointer(prev.types + uintptr(tl)))
type.go#L308: t := (*_type)(unsafe.Pointer(md.types + uintptr(tl)))
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |